home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 November / Chip_2003-11_cd1.bin / program / delphi / kompon / BalmsoftPolyglot.exe / {app} / Demos / Delphi 5-7 / bsPolyglotDemoMdl.pas < prev    next >
Pascal/Delphi Source File  |  2003-08-15  |  566b  |  31 lines

  1. unit bsPolyglotDemoMdl;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   Menus, bsPolyglotUn;
  8.  
  9. type
  10.   TDataModule1 = class(TDataModule)
  11.     pmnu: TPopupMenu;
  12.     Test11: TMenuItem;
  13.     Test21: TMenuItem;
  14.     bsPolyglotTranslator1: TbsPolyglotTranslator;
  15.     PolyglotManager: TbsPolyglotManager;
  16.     bsPolyglotManager1: TbsPolyglotManager;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   DataModule1: TDataModule1;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.